Boot into Linux on the flash drive as mradmin
, password still bluestone
. You may stay on the orange network with a 153.106.* IP address.
I learned last year that, while everyone knows about ping, many students don't know about traceroute.
traceroute
on your machine, if it isn't there already.traceroute.
It will probably give you an error and tell you how to install traceroute. Remember you have to use sudo
to run apt-get
.traceroute
is supposed to do. *** Q1. Put your answer in your lab report. ***traceroute
to 8.8.8.8 (google's DNS server machine). *** Q2. Copy 'n' paste the results into your lab report. ***sudo wireshark
). (You may have to install it.) You'll want to turn on some filtering in wireshark so that you are only seeing message to/from your host. Expression...
button, then scroll down to find IPv4.ip.addr
. Then set the relation
to ==
and put your machines IP address in the Value
box. Now, click Apply
on the main window.traceroute
8.8.8.8 in another terminal. Time to live
field in the IP header.traceroute 7.7.7.7
and see if what you get back helps you understand what is going on. ***
traceroute
to 44.0.0.1
. Look at the names of the machines in the output. *** Q4. List some of the geographic locations (cities, areas) that the packet travels through to get to the destination. Some of this info is shown in the names of the machines. You might also go to http://iplocation.net to figure out or confirm some of the locations. ***
nmap is a very powerful tool that lets you discover all kinds of things about machines on a network.
nmap
on your machine.nmap --help
to see how many many many command-line options there are... *shudder*nmap
. Keep those web pages handy.153.106.116.0/23 .
Put your output in your lab report. ***nmap
list only open http ports (port 80) on machines on 153.106.116.* and 153.106.117.* and show what version of software is listening on those ports? *** (Answer: nmap --open -sV -p T:80 153.106.116.* 153.106.117.*
Remove wireshark, traceroute, and nmap from the flash drive:
sudo apt-get purge wireshark traceroute nmap
Extra time? Try out mtr
. It is cool!